]> git.r.bdr.sh - rbdr/super-polarity/blobdiff - Super Polarity/Actors/Ship.cs
Stuffffffff
[rbdr/super-polarity] / Super Polarity / Actors / Ship.cs
index 2839c9738dcebb00ac93f2501bc73ab298ee9bdb..49d0b1412f5beccd846abe76e081f117a932bd50 100644 (file)
@@ -14,9 +14,9 @@ namespace SuperPolarity
         public Polarity CurrentPolarity;
         public uint MagneticRadius;
 
-        protected float FleeVelocity;
-        protected float ActVelocity;
-        protected float ChargeVelocity;
+        public float FleeVelocity;
+        public float ActVelocity;
+        public float ChargeVelocity;
         protected int RepelRadius;
 
         protected bool Magnetizing;
@@ -25,11 +25,11 @@ namespace SuperPolarity
             MagneticRadius = 250;
             RepelRadius = 100;
 
-            HP = 5;
+            HP = 2;
 
             FleeVelocity = 5;
-            ActVelocity = 2;
-            ChargeVelocity = 1.5f;
+            ActVelocity = 1;
+            ChargeVelocity = 2.5f;
             CurrentPolarity = Polarity.Neutral;
             Magnetizing = false;
         }